home *** CD-ROM | disk | FTP | other *** search
/ Delphi Magazine Collection 2001 / Delphi Magazine Collection 20001 (2001).iso / DISKS / Issue56 / Construc / client56.DPR < prev    next >
Encoding:
Text File  |  2000-01-03  |  186 b   |  13 lines

  1. program Client54;
  2. uses
  3.   Forms,
  4.   Unit3 in 'Unit3.pas' {Form3};
  5.  
  6. {$R *.RES}
  7.  
  8. begin
  9.   Application.Initialize;
  10.   Application.CreateForm(TForm3, Form3);
  11.   Application.Run;
  12. end.
  13.